home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Compilers⁄Interps / GCC-2.3.3r12 / Sources-Apple / stathack.h < prev    next >
Encoding:
Text File  |  1992-06-15  |  124 b   |  11 lines  |  [TEXT/MPS ]

  1. typedef short ino_t;
  2. typedef short dev_t;
  3.  
  4. struct stat {
  5.     ino_t st_ino;
  6.     dev_t st_dev;
  7. };
  8.  
  9. void fstat(int, struct stat *);
  10.  
  11.